home *** CD-ROM | disk | FTP | other *** search
/ The Programmer Disk / The Programmer Disk (Microforum).iso / xpro / c / pro14 / extern.h < prev    next >
Encoding:
Text File  |  1986-04-02  |  640 b   |  12 lines

  1. /* global flags for bm */
  2. extern int    cFlag, /* true if we want only a count of matching lines */
  3.     fFlag, /* true if the patterns arew to come from a file */
  4.     lFlag, /* true if we want a list of files containing the pattern */
  5.     nFlag, /* true if we want the character offset of the pattern */
  6.     sFlag, /* true if we want silent mode */
  7.     xFlag, /* true if we want only lines which match entirely */
  8.  
  9.     MatchCount; /* count of number of times a search string was found
  10.     * in the text */
  11. extern char *FileName;
  12.